This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: LS2J security exception ~Tanita Quetfreegenli 1.Sep.03 11:46 AM a Web browser Domino Server 6.0.2 CF1Windows 2000
To find the problem i suggest to put the whole code of the Java Method which throw the java Security Exception in a try catch block. Then make in the catch block a printStacktrace.
try{
// your code
}
catch(java.lang.SecurityException e){
e.printStackTrace()
}
Then post the Stacktrace for further investigation. Maybe it will help when you post the code of the Java method too.